home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
lisp
/
stk-3.002
/
stk-3
/
STk-3.1
/
Contrib
/
STk-wtour
/
lessons
/
selection.stk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-13
|
373 b
|
14 lines
;; X Selection
(pack
[label '.lab :text "Selection is:" :anchor "w"]
[text '.t :relief "raised" :bd 1 :height 15]
[button '.b1 :text "Get Selection"
:command (lambda ()
;; Clear text buffer
(.t 'delete "1.0" "end")
;; Insert selection if it exists
(unless (catch (selection 'get))
(.t 'insert "1.0" (selection 'get))))])